home *** CD-ROM | disk | FTP | other *** search
Text File | 1991-03-06 | 891 b | 32 lines | [TEXT/GEOL] |
- Item 0468317 12-Jan-90 08:35
-
- From: DAWSON.M Dawson, Mark
-
- To: MACAPP.TECH$ MacApp Technical
-
- Sub: Using DoChoice problem
-
- I'm try to handle events in my main window that I created via ViewEdit, but
- when I try to execute the program, I get an error:
- "Can't find class name TBigView"
- stopped at break GETCLASSIDFROMNAME Seg#1
-
- I created the window as a TView object and changed its class to "TBigView".
- My .h file has a:
- class TBigView: public TView {
- public virtual void DoChoice(TView *origView, short itsChoice);
- };
-
- my .cp file has:
- #pragma segment ARES
- pascal void TBigView::DoChoice (TView *origView, short itsChoice)
- {
- DebugStr((StringPtr)"\pI'm Here");
- }
-
- Is there anything any of you can think of to cause this problem? (I hope I'm
- giving enough info to help solve this).
-
- --Mark
-
-